home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / dev / misc / gadoc.lha / GAdoc.c / All_Warnings < prev    next >
Encoding:
Text File  |  1995-03-27  |  471 b   |  15 lines

  1.  
  2. # Makefile mit allen möglichen Warnungen für den gcc Compiler
  3. #
  4. # Wenn der Compiler SEHR streng prüfen soll, so am besten $(PARANOID) mit
  5. # einbinden beim Übersetzen.
  6.  
  7.  
  8. PARANOID = -Wtraditional -Wshadow -Wpointer-arith -Wcast-qual -Wwrite-strings\\
  9.            -Wconversion -Waggregate-return -Wstrict-prototypes\\
  10.            -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls\\
  11.            -Wnested-externs -Winline
  12.  
  13. STD_WARNING = -Wall -pedantic $(PARANOID)
  14.  
  15.